home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacGames Sampler
/
PHT MacGames Bundle.iso
/
MacSource Folder
/
Samples from the CD
/
C and C++
/
POSIX
/
ThinkCPosix
/
grp.h
< prev
next >
Wrap
Text File
|
1992-09-11
|
139b
|
13 lines
/* $Id: $ */
#pragma once
#include "sys/types.h"
struct group {
char *gr_name;
gid_t gr_gid;
char *gr_passwd;
char **gr_mem;
};